home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / temacd / tiny / tpf-6[1].5.126.exe / Tiny Firewall 2005.msi / webui.dll / WS / WSN-DEVICES.XSL < prev    next >
Encoding:
Extensible Markup Language  |  2005-08-17  |  12.5 KB  |  221 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4. /*//////////////////////////////////////////////////////////////////////
  5. Filename:          ws_device.xsl
  6. Company Name:      Computer Associates International, Inc.
  7. Legal Copyright: Copyright (c) Computer Associates International, Inc.
  8. Author:          Petr Soukup
  9. Product:          Tiny Firewall
  10. Description:
  11. ///////////////////////////////////////////////////////////////////////*/
  12.  -->
  13.  
  14. <xsl:stylesheet
  15.     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >
  16.  
  17. <!--
  18. ************************************************************************
  19.     INCLUDE SECTION
  20. ************************************************************************
  21. -->
  22.  
  23.     <!-- Language dependent string -->
  24.     <xsl:variable name="str_dev_text1" select="//Params/Param[@name='str_dev_text1']"/>
  25.     <xsl:variable name="str_dev_monitor" select="//Params/Param[@name='str_dev_monitor']"/>
  26.     <xsl:variable name="str_dev_ignore" select="//Params/Param[@name='str_dev_ignore']"/>
  27.  
  28.     <xsl:variable name="str_dev_text2" select="//Params/Param[@name='str_dev_text2']"/>
  29.     <xsl:variable name="str_dev_cb1" select="//Params/Param[@name='str_dev_cb1']"/>
  30.     <xsl:variable name="str_dev_cb2" select="//Params/Param[@name='str_dev_cb2']"/>
  31.     <xsl:variable name="str_dev_cb3" select="//Params/Param[@name='str_dev_cb3']"/>
  32.     <xsl:variable name="str_dev_cb4" select="//Params/Param[@name='str_dev_cb4']"/>
  33.     <xsl:variable name="str_dev_cb5" select="//Params/Param[@name='str_dev_cb5']"/>
  34.     <xsl:variable name="str_dev_cb6" select="//Params/Param[@name='str_dev_cb6']"/>
  35.     <xsl:variable name="str_dev_cb7" select="//Params/Param[@name='str_dev_cb7']"/>
  36.     <xsl:variable name="str_dev_cb8" select="//Params/Param[@name='str_dev_cb8']"/>
  37.     <xsl:variable name="str_dev_cb9" select="//Params/Param[@name='str_dev_cb9']"/>
  38.  
  39. <!--=================================================================-->
  40.     <xsl:template match="/">
  41. <!--=================================================================-->
  42.         <xsl:apply-templates select="/SecDb/RuleList"/>
  43.     </xsl:template>
  44.  
  45. <!--=================================================================-->
  46.     <xsl:template match="RuleList">
  47. <!--=================================================================-->
  48.         <p>
  49.             <b><xsl:value-of select="$str_dev_text1"/></b>
  50.             <xsl:text> </xsl:text>
  51.             <select id="SelAuditLevel" onchange="changeAuditLevel()">
  52.                 <xsl:choose>
  53.                     <xsl:when test="Rule[@ot='Device' and AccessDesc/@ar='Prevent' and AccessDesc/@al='Ignore']">
  54.                         <option value="monitor"><xsl:value-of select="$str_dev_monitor"/></option>
  55.                         <option value="ignore" selected="selected"><xsl:value-of select="$str_dev_ignore"/></option>
  56.                     </xsl:when>
  57.                     <xsl:otherwise>
  58.                         <option value="monitor" selected="selected"><xsl:value-of select="$str_dev_monitor"/></option>
  59.                         <option value="ignore"><xsl:value-of select="$str_dev_ignore"/></option>
  60.                     </xsl:otherwise>
  61.                 </xsl:choose>
  62.             </select>
  63.         </p>
  64.         <p>
  65.             <b><xsl:value-of select="$str_dev_text2"/></b>
  66.             <ul class="DeviceControl">
  67.                 <li>
  68.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this);">
  69.                         <xsl:if test="Rule[@ot='Device' and Object='Tcpip\DevN\*\RawIp' and AccessDesc/@ar='Prevent']">
  70.                             <xsl:attribute name="checked">checked</xsl:attribute>
  71.                         </xsl:if>
  72.                         <xsl:attribute name="objects">Tcpip\DevN\*\RawIp|Tcpip\DevN\*\IPMULTICAST|Tcpip\DevN\*\Ip|Ndisuio\DevN\*\</xsl:attribute>
  73.                         <xsl:attribute name="rules">
  74.                             <xsl:for-each select="Rule[(not(@app_id) or (@app_id!='Trusted' and @app_id!='AllowRawIPApps')) and @ot='Device' and (Object='Tcpip\DevN\*\RawIp' or Object='Tcpip\DevN\*\IPMULTICAST' or Object='Tcpip\DevN\*\Ip' or Object='Ndisuio\DevN\*\')]">
  75.                                 <xsl:value-of select="@id"/>
  76.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  77.                             </xsl:for-each>
  78.                         </xsl:attribute>
  79.                     </input>
  80.                     <xsl:value-of select="$str_dev_cb1"/>
  81.                 </li>
  82.  
  83.                 <li>
  84.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  85.                         <xsl:if test="Rule[@ot='Device' and Object='Disk\Link\*\usbstor*' and AccessDesc/@ar='Prevent']">
  86.                             <xsl:attribute name="checked">checked</xsl:attribute>
  87.                         </xsl:if>
  88.                         <xsl:attribute name="objects">Disk\Link\*\usbstor*</xsl:attribute>
  89.                         <xsl:attribute name="rules">
  90.                             <xsl:for-each select="Rule[@ot='Device' and (Object='Disk\Link\*\usbstor*')]">
  91.                                 <xsl:value-of select="@id"/>
  92.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  93.                             </xsl:for-each>
  94.                         </xsl:attribute>
  95.                     </input>
  96.                     <xsl:value-of select="$str_dev_cb2"/>
  97.                 </li>
  98.  
  99.                 <li>
  100.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  101.                         <xsl:if test="Rule[@ot='Device' and (Object='Disk\Link\*\Sbp2*') and AccessDesc/@ar='Prevent']">
  102.                             <xsl:attribute name="checked">checked</xsl:attribute>
  103.                         </xsl:if>
  104.                         <xsl:attribute name="objects">Disk\Link\*\Sbp2*</xsl:attribute>
  105.                         <xsl:attribute name="rules">
  106.                             <xsl:for-each select="Rule[@ot='Device' and (Object='Disk\Link\*\Sbp2*')]">
  107.                                 <xsl:value-of select="@id"/>
  108.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  109.                             </xsl:for-each>
  110.                         </xsl:attribute>
  111.                     </input>
  112.                     <xsl:value-of select="$str_dev_cb3"/>
  113.                 </li>
  114.  
  115.                 <li>
  116.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  117.                         <xsl:if test="Rule[@ot='Device' and Object='*\Link\Modem\*' and AccessDesc/@ar='Prevent']">
  118.                             <xsl:attribute name="checked">checked</xsl:attribute>
  119.                         </xsl:if>
  120.                         <xsl:attribute name="objects">*\Link\Modem\*</xsl:attribute>
  121.                         <xsl:attribute name="account">system</xsl:attribute>
  122.                         <xsl:attribute name="rules">
  123.                             <xsl:for-each select="Rule[@ot='Device' and Object='*\Link\Modem\*']">
  124.                                 <xsl:value-of select="@id"/>
  125.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  126.                             </xsl:for-each>
  127.                         </xsl:attribute>
  128.                     </input>
  129.                     <xsl:value-of select="$str_dev_cb4"/>
  130.                 </li>
  131.  
  132.                 <li>
  133.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  134.                         <xsl:if test="Rule[@ot='Device' and (Object='irda\DevN\*\' or Object='*\Link\Infrared\*') and AccessDesc/@ar='Prevent']">
  135.                             <xsl:attribute name="checked">checked</xsl:attribute>
  136.                         </xsl:if>
  137.                         <xsl:attribute name="objects">irda\DevN\*\|*\Link\Infrared\*</xsl:attribute>
  138.                         <xsl:attribute name="account">system</xsl:attribute>
  139.                         <xsl:attribute name="rules">
  140.                             <xsl:for-each select="Rule[@ot='Device' and (Object='irda\DevN\*\' or Object='*\Link\Infrared\*')]">
  141.                                 <xsl:value-of select="@id"/>
  142.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  143.                             </xsl:for-each>
  144.                         </xsl:attribute>
  145.                     </input>
  146.                     <xsl:value-of select="$str_dev_cb5"/>
  147.                 </li>
  148.  
  149.                 <li>
  150.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  151.                         <xsl:if test="Rule[@ot='Device' and Object='*\Link\Ports\*' and AccessDesc/@ar='Prevent']">
  152.                             <xsl:attribute name="checked">checked</xsl:attribute>
  153.                         </xsl:if>
  154.                         <xsl:attribute name="objects">*\Link\Ports\*</xsl:attribute>
  155.                         <xsl:attribute name="account">system</xsl:attribute>
  156.                         <xsl:attribute name="rules">
  157.                             <xsl:for-each select="Rule[@ot='Device' and Object='*\Link\Ports\*']">
  158.                                 <xsl:value-of select="@id"/>
  159.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  160.                             </xsl:for-each>
  161.                         </xsl:attribute>
  162.                     </input>
  163.                     <xsl:value-of select="$str_dev_cb6"/>
  164.                 </li>
  165.  
  166.                 <li>
  167.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  168.                         <xsl:if test="Rule[@ot='Device' and Object='*\Link\FloppyDisk\*' and AccessDesc/@ar='Prevent']">
  169.                             <xsl:attribute name="checked">checked</xsl:attribute>
  170.                         </xsl:if>
  171.                         <xsl:attribute name="objects">*\Link\FloppyDisk\*</xsl:attribute>
  172.                         <xsl:attribute name="account">system</xsl:attribute>
  173.                         <xsl:attribute name="rules">
  174.                             <xsl:for-each select="Rule[@ot='Device' and Object='*\Link\FloppyDisk\*']">
  175.                                 <xsl:value-of select="@id"/>
  176.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  177.                             </xsl:for-each>
  178.                         </xsl:attribute>
  179.                     </input>
  180.                     <xsl:value-of select="$str_dev_cb7"/>
  181.                 </li>
  182.  
  183.                 <li>
  184.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  185.                         <xsl:if test="Rule[@ot='Device' and Object='*\Link\CDROM\*' and AccessDesc/@ar='Prevent']">
  186.                             <xsl:attribute name="checked">checked</xsl:attribute>
  187.                         </xsl:if>
  188.                         <xsl:attribute name="objects">*\Link\CDROM\*</xsl:attribute>
  189.                         <xsl:attribute name="account">system</xsl:attribute>
  190.                         <xsl:attribute name="rules">
  191.                             <xsl:for-each select="Rule[@ot='Device' and Object='*\Link\CDROM\*']">
  192.                                 <xsl:value-of select="@id"/>
  193.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  194.                             </xsl:for-each>
  195.                         </xsl:attribute>
  196.                     </input>
  197.                     <xsl:value-of select="$str_dev_cb8"/>
  198.                 </li>
  199.  
  200.                 <li>
  201.                     <input type="checkbox" name="checkDevicesCtrl" onclick="changeRules(this)">
  202.                         <xsl:if test="Rule[@ot='Device' and Object='DangerousIoctl\*' and @app='*' and AccessDesc/@ar='Prevent']">
  203.                             <xsl:attribute name="checked">checked</xsl:attribute>
  204.                         </xsl:if>
  205.                         <xsl:attribute name="objects">DangerousIoctl\*</xsl:attribute>
  206.                         <xsl:attribute name="rules">
  207.                             <xsl:for-each select="Rule[@ot='Device' and Object='DangerousIoctl\*' and @app='*']">
  208.                                 <xsl:value-of select="@id"/>
  209.                                 <xsl:if test="position()!=last()"><xsl:text>|</xsl:text></xsl:if>
  210.                             </xsl:for-each>
  211.                         </xsl:attribute>
  212.                     </input>
  213.                     <xsl:value-of select="$str_dev_cb9"/>
  214.                 </li>
  215.             </ul>
  216.         </p>
  217.  
  218.     </xsl:template>
  219.  
  220. </xsl:stylesheet>
  221.